home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot.new / h / mem.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-19  |  830 b   |  34 lines

  1.  
  2. /*    @(#)mem.h 1.1 86/09/27 SMI    */
  3.  
  4. /*
  5.  * Copyright (c) 1986 by Sun Microsystems, Inc.
  6.  */
  7.  
  8. /*
  9.  *    defines routines available, and a structure template
  10.  *    for making callout test setups.
  11.  */
  12.  
  13. struct    mem_call {
  14.     char    *m_name;        /* name for printout?? */
  15.     int    m_size,            /* to compute address with index */
  16.         (*m_fill)(),        /* memory fill routine to use should */
  17.         (*m_check)(),        /* match check routine to use */
  18.         m_p1, m_p2, m_p3, m_p4;    /* parameters to pass after addr,size */
  19. };
  20.  
  21. extern u_long    obs_value;
  22.  
  23. int    bpfill(), wpfill(), lpfill();
  24.     bpcheck(), wpcheck(), lpcheck(),
  25.     o_bpcheck(), o_wpcheck(), o_lpcheck();
  26.  
  27. int    bufill(), wufill(), lufill();
  28.     bucheck(), wucheck(), lucheck(),
  29.     o_bucheck(), o_wucheck(), o_lucheck();
  30.  
  31. int    brfill(), wrfill(), lrfill();
  32.     brcheck(), wrcheck(), lrcheck(),
  33.     o_brcheck(), o_wrcheck(), o_lrcheck();
  34.